4353 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 108 / 218
Newer►
  • thumbnail
    sysadvent: Day 13 - Configuration Management as Legos
    2014年5月19日 GMT+2 下午12:57:31 - permalink - archive.org - http://sysadvent.blogspot.co.uk/2012/12/day-13-configuration-management-as-legos.html
    design-pattern puppet
  • Redis4You Redis Hosting | Article Library | Why RDBMS and SQL are difficult...
    2014年5月19日 GMT+2 上午8:20:15 - permalink - archive.org - http://redis4you.com/articles.php?id=004&name=Why+RDBMS+and+SQL+are+difficult
    redis sql
  • Le déploiement par conteneurs avec Docker | Sam & Max: Python, Django, Git et du cul

    sam qui teste docker ^^

    2014年5月16日 GMT+2 下午4:45:19 - permalink - archive.org - http://sametmax.com/le-deploiement-par-conteneurs-avec-docker/
    docker
  • When to Hiera (Aka: How Do I Module?) - Shit Gary Says

    Deux patterns pour séparer les data du code dans puppet : "the params class pattern" et Hiera

    2014年5月16日 GMT+2 上午11:51:31 - permalink - archive.org - http://garylarizza.com/blog/2013/12/08/when-to-hiera/
    hiera param puppet
  • thumbnail
    38 Maps They Didn’t Teach You At School (Part II) | Bored Panda
    2014年5月16日 GMT+2 上午11:08:41 - permalink - archive.org - http://www.boredpanda.com/interesting-maps/
    map
  • Résultats de l'enquête sur SDN et TE < B6 Research Survey

    résultat d'une enquete sur le sdn qui était passé sur frnog

    2014年5月15日 GMT+2 下午2:54:48 - permalink - archive.org - http://www.border6.com/result/index.php?id=sdn_te
    sdn
  • Documentation / Installation / RainLoop Webmail
    2014年5月15日 GMT+2 下午1:55:36 - permalink - archive.org - http://rainloop.net/docs/installation/
    mail webmail
  • How to log history and logins from multiple ssh-keys under one user account | Screenage

    Une astuce utile pour faire un audit des connexions par clé sur un compte (quand on a plusieurs personnes avec des clés différentes qui accèdent au meme user)

    Implémentation rapide :

    !/bin/bash

    #On convertit le authorized_keys pour ajouter la variable d'env

    cp ~/.ssh/authorized_keyz ~/.ssh/authorized_keyz.ORIGINAL

    IFS=$'\n'
    for line in $(cat .ssh/authorized_keys)
    do
    comment=$(echo $line|cut -d' ' -f3)
    echo "environment=\"SSH_USER=$comment\" $line" >> ~/.ssh/authorized_keyz.COMMENT
    done

    cp ~/.ssh/authorized_keyz.COMMENT ~/.ssh/authorized_keyz

    Puis dans le bashrc de l'user, ajouter ça :

    if [ "$SSHUSER" != "" ]; then
    now=$(date +%Y-%m-%d
    %H-%M-%S)
    echo $now : User $SSH_USER logged in >> ~/ssh-audit.log
    fi

    2014年5月14日 GMT+2 下午5:22:59 - permalink - archive.org - http://www.screenage.de/blog/2012/02/10/how-to-log-history-and-logins-from-multiple-ssh-keys-under-one-user-account-with-puppet/
    audit ssh
  • ▶ "Linux Sucks" - 2014 - YouTube

    ya du vrai la dedans :D

    2014年5月13日 GMT+2 下午1:25:47 - permalink - archive.org - https://www.youtube.com/watch?v=5pOxlazS3zs
    conf linux sys
  • Bien utiliser Git merge et rebase • Git Attitude : formations Git qualitatives et sympathiques

    tout est dans le titre

    via Skunnyk

    2014年5月12日 GMT+2 上午11:23:01 - permalink - archive.org - http://www.git-attitude.fr/2014/05/04/bien-utiliser-git-merge-et-rebase/
    git
  • GTIDs in MySQL 5.6: New replication protocol, ways to break replication

    nouveau protocole de replication mysql

    via Skunnyk

    2014年5月12日 GMT+2 上午10:48:51 - permalink - archive.org - http://www.mysqlperformanceblog.com/2014/05/09/gtids-in-mysql-5-6-new-replication-protocol-new-ways-to-break-replication/
    gtid mysql sys
  • OMX Remote - Applications Android sur Google Play

    Au top cette application, au revoir xbmc.. Bien plus rapide pour lancer une série ou un film.
    C'est sur qu'au passage je perds les images et les descriptions des films.. mais bon, xbmc est trop consommateur en CPU pour le laisser tourner sur le rasp et pas très agréable à utiliser alors je vais privilégier la legereté/simplicité d'un omxplayer et de cette petite application pour le controler.

    2014年5月10日 GMT+2 下午3:19:55 - permalink - archive.org - https://play.google.com/store/apps/details?id=com.tencarssoftware.omxremote
    omxplayer raspberry xbmc
  • TMUX – The Terminal Multiplexer (Part 1) | Hawk Host Blog
    • http://blog.hawkhost.com/2010/07/02/tmux-%E2%80%93-the-terminal-multiplexer-part-2/

    via arnaudb

    2014年5月7日 GMT+2 下午3:36:27 - permalink - archive.org - http://blog.hawkhost.com/2010/06/28/tmux-the-terminal-multiplexer/
    screen tmux
  • AWS Free Usage Tier

    Faudrait que je prenne le temps de tester tout ça

    2014年5月7日 GMT+2 下午1:51:35 - permalink - archive.org - http://aws.amazon.com/free/
    amazon it
  • Apache Tips & Tricks: Disable directory indexes - MDLog:/sysadmin

    truc à faire direct après l'install d'apache2
    ça laisse la possibilité d'utiliser indexes sur certains dir

    2014年5月6日 GMT+2 下午6:17:47 - permalink - archive.org - http://www.ducea.com/2006/06/26/apache-tips-tricks-disable-directory-indexes/
    apache
  • Puppet, Parameterized classes .vs. Definitions - - Craig Dunn's Blog

    Et oui, une classe ne peut être déclarée qu'une fois, c'est un singleton (une installation d'apache par exemple)
    Alors qu'un defined type peut être déclaré x fois, il faut voir ça comme des objets qui peuvent avoir plusieurs instances (comme les vhost)

    2014年5月6日 GMT+2 下午3:24:06 - permalink - archive.org - http://www.craigdunn.org/2011/09/puppet-parameterized-classes-vs-definitions/
    puppet
  • Christian Hofstädtler - Puppet: managing directories recursively

    ptin ça marche pas avec nagios_* :/

    http://www.mnxsolutions.com/linux/automatically-purge-old-configuration-from-nagios-deployed-by-puppet.html
    et ça ça passe seulement avec le path par defaut des nagios_ (/etc/nagios3/.cfg)

    2014年5月5日 GMT+2 下午6:12:59 - permalink - archive.org - http://christian.hofstaedtler.name/blog/2008/11/puppet-managing-directories-recursively.html
    puppet
  • Arduino Playground - Ubuntu
    2014年5月2日 GMT+2 上午11:11:42 - permalink - archive.org - http://playground.arduino.cc/Linux/Ubuntu
    arduino ubuntu
  • SSL Offloading, Encryption and Certificates with NGINX - NGINX

    intro à l'offloading ssl de nginx

    2014年4月30日 GMT+2 下午10:13:42 - permalink - archive.org - http://nginx.com/blog/nginx-ssl/
    nginx
  • thumbnail
    Designing Puppet: Roles/Profiles Pattern

    un design pattern role/profile

    • la conf https://www.youtube.com/watch?v=ZpHtOnlSGNY

    • des blogposts :
      http://www.craigdunn.org/2012/05/239/
      http://sysadvent.blogspot.co.uk/2012/12/day-13-configuration-management-as-legos.html
      http://www.devco.net/archives/2012/12/13/simple-puppet-module-structure-redux.php

    2014年4月30日 GMT+2 下午6:25:33 - permalink - archive.org - http://fr.slideshare.net/PuppetLabs/roles-talk
    pattern puppet
Links per page: 20 50 100
◄Older
page 108 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation